home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / enlightenment / e_atoms.h < prev    next >
C/C++ Source or Header  |  2006-01-09  |  908b  |  35 lines

  1. /*
  2.  * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
  3.  */
  4. #ifdef E_TYPEDEFS
  5. #else
  6. #ifndef E_ATOMS_H
  7. #define E_ATOMS_H
  8.  
  9. /* an "overall" atom to see that we recognise the window */
  10. extern EAPI Ecore_X_Atom E_ATOM_MANAGED;
  11.  
  12. /* basic window properties */
  13. extern EAPI Ecore_X_Atom E_ATOM_CONTAINER;
  14. extern EAPI Ecore_X_Atom E_ATOM_ZONE;
  15. extern EAPI Ecore_X_Atom E_ATOM_DESK;
  16. extern EAPI Ecore_X_Atom E_ATOM_MAPPED;
  17. extern EAPI Ecore_X_Atom E_ATOM_SHADE_DIRECTION;
  18. extern EAPI Ecore_X_Atom E_ATOM_HIDDEN;
  19. extern EAPI Ecore_X_Atom E_ATOM_BORDER_SIZE;
  20.  
  21. /* extra e window states */
  22. /* if we add more states, we need to fix
  23.  * * e_hints_window_e_state_get()
  24.  * * e_hints_window_e_state_set()
  25.  * * _e_win_state_update() + e_win
  26.  */
  27. extern EAPI Ecore_X_Atom E_ATOM_WINDOW_STATE;
  28. extern EAPI Ecore_X_Atom E_ATOM_WINDOW_STATE_CENTERED;
  29.  
  30. EAPI int    e_atoms_init(void);
  31. EAPI int    e_atoms_shutdown(void);
  32.  
  33. #endif
  34. #endif
  35.